home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / source / zendisk1 / lst4-5.asm < prev    next >
Assembly Source File  |  1990-02-15  |  328b  |  15 lines

  1. ;
  2. ; *** Listing 4-5 ***
  3. ;
  4. ; Measures the performance of 1000 SHR instructions
  5. ; in a row. Since SHR executes in 2 cycles but is
  6. ; 2 bytes long, the prefetch queue is always empty,
  7. ; and prefetching time determines the overall
  8. ; performance of the code.
  9. ;
  10.     call    ZTimerOn
  11.     rept    1000
  12.     shr    ax,1
  13.     endm
  14.     call    ZTimerOff
  15.